home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / ActiveX Controlls / NCTAudioEditor2 ActiveX DLL / NCTAudioEditor2.exe / {app} / Samples / TestBCBAudioEditor2 / Info.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-03-28  |  1.6 KB  |  56 lines

  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef InfoH
  4. #define InfoH
  5. //---------------------------------------------------------------------------
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include <Dialogs.hpp>
  11. #include <ExtCtrls.hpp>
  12. #include <OleCtrls.hpp>
  13. #include "NCTAUDIOEDITOR2Lib_OCX.h"
  14. //---------------------------------------------------------------------------
  15. class TfrmInfo : public TForm
  16. {
  17. __published:    // IDE-managed Components
  18.     TLabel *Label5;
  19.     TEdit *infoTitle;
  20.     TLabel *Label6;
  21.     TEdit *infoArtist;
  22.     TLabel *Label7;
  23.     TEdit *infoAlbum;
  24.     TLabel *Label12;
  25.     TComboBox *infoGenre;
  26.     TLabel *Label8;
  27.     TEdit *infoCopyright;
  28.     TLabel *Label9;
  29.     TEdit *infoYear;
  30.     TLabel *Label10;
  31.     TEdit *infoTrack;
  32.     TLabel *Label11;
  33.     TEdit *infoComment;
  34.     TButton *btnApply;
  35.     TButton *btnReset;
  36.     TRadioGroup *infoMTV;
  37.     TLabel *Label3;
  38.     TEdit *infoComposer;
  39.     TLabel *Label4;
  40.     TEdit *infoEncodedBy;
  41.     TLabel *Label13;
  42.     TEdit *infoURL;
  43.     void __fastcall btnResetClick(TObject *Sender);
  44.     void __fastcall btnApplyClick(TObject *Sender);
  45.     void __fastcall FormShow(TObject *Sender);
  46. private:
  47.     void ResetData();    // User declarations
  48. public:        // User declarations
  49.     __fastcall TfrmInfo(TComponent* Owner);
  50.     IAudioEditor2FileInfoPtr Info;
  51. };
  52. //---------------------------------------------------------------------------
  53. extern PACKAGE TfrmInfo *frmInfo;
  54. //---------------------------------------------------------------------------
  55. #endif
  56.